home *** CD-ROM | disk | FTP | other *** search
- var i = 0;
- var oTempItm = null;
- var iOrigH = _height;
- var oLstItmH = oListContainer.oListItem._height;
- oListContainer.oListItem._visible = 0;
- addToList = function(sText)
- {
- oListContainer.oListItem.duplicateMovieClip("oListItem" add i,i++);
- oTempItm = eval("oListContainer.oListItem" add i);
- oTempItm._y = (i - 1) * oLstItmH;
- oTempItm.osCaption.text = sText;
- };
- clearList = function()
- {
- _level0.oScroller0.oScrollSlider._y = 0;
- j = 1;
- while(j <= i)
- {
- oTempItm = eval("oListContainer.oListItem" add j);
- removeMovieClip(oTempItm);
- j++;
- }
- i = 0;
- };
-